.heading {
    text-align: center;
    margin-bottom: 30px;
    color: white;
}

.box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.box {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px black;
    transition: transform 0.3s, box-shadow 0.3s;
}

.box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.box h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
}

.box p {
    font-size: 0.95em;
    color: #555;
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px black;
}
 
 
 
 body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-image:url("pctures/website-background-a6wbhti5rhqieecp.jpg");
      margin: 0;
      padding: 0;
      background-image:url("pctures/bg.jpg");
    }
     
    nav {
      background-color: #222;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 30px;
      box-shadow: 0 2px 5px gray;
    }

    nav img {
      width: 120px;
      height: auto;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 25px;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #00bfff;
    }

    .about-section {
      background: white;
      max-width: 1000px;
      margin: 50px auto;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 3px 10px black;

    }

    .about-section h1 {
      text-align: center;
      color:darkslategrey;
      margin-bottom: 20px;
    }

    .about-section h2 {
      color: black;
      margin-top: 30px;
      border-left: 4px solid #00bfff;
      padding-left: 10px;
    }

    .about-section p {
      font-size: 18px;
      line-height: 1.7;
      margin: 15px 0;
    }

    .team {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    footer {
      background:gray;
      color: white;
      padding: 20px;
      text-align: center;
      margin-top: 40px;
      
    }

    footer a {
      color: yellow;
      text-decoration: none;
      margin: 0 10px;
      font-weight: bold;
    }

    footer a:hover {
      color: lightblue;
    }

